home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Dom i biuro / Crimson Editor 3.70 / cedt370r.exe / template / hello world program.ada < prev    next >
Text File  |  2001-11-19  |  143b  |  10 lines

  1. -- basic template file for ada
  2.  
  3. with text_io;
  4. use text_io;
  5.  
  6. procedure Hello_World is
  7. begin
  8.     put_line("Hello World");
  9. end Hello_world;
  10.